13002896c09237a9f3f3ca8ce889f0867d5b6ead,gdx/src/com/badlogic/gdx/scenes/scene2d/actors/Image.java,Image,Image,#String#TextureRegion#,38

Before Change



	public Image (String name, TextureRegion region) {
		super(name);
		width = region.getRegionWidth();
		height = region.getRegionHeight();
		originX = width / 2.0f;
		originY = height / 2.0f;
		this.region = new TextureRegion(region);

After Change



	public Image (String name, TextureRegion region) {
		super(name);
		width = Math.abs(region.getRegionWidth());
		height = Math.abs(region.getRegionHeight());
		originX = width / 2.0f;
		originY = height / 2.0f;
		this.region = new TextureRegion(region);